home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / prog / lvswin.zip / DEMO.DOC < prev    next >
Text File  |  1991-10-16  |  2KB  |  62 lines

  1. To build the demo program.
  2.  
  3. Turbo C++ v1.0
  4.     TCC -ms -Z -O DEMO.CPP WINOBJ_S.LIB
  5.  
  6. Borland C++ v2.0
  7.     BCC -ms -Z -O DEMO.CPP WINOBJ_S.LIB
  8.  
  9. Zortech C++ v3.0
  10.     ztc -ms DEMO.CPP WINOBJZM.LIB
  11.  
  12.  
  13.  
  14. Some of the features of the Demo program provided with LVS Windows.
  15.  
  16. Command line options:
  17.     /b   use bios video writes
  18.     /s   CGA snow suppression
  19.     /m   remap colors to black & white
  20.     /ms  use simple mouse support, full support by default
  21.     /mn  use no mouse support
  22.     /5   use VGA 50 line mode
  23.     /2   use VGA 28 line mode
  24.     /V   don't use VGA graphics/colors (default do use)
  25.  
  26.  
  27. Using the Mouse:
  28.     You must have a MicroSoft compatible mouse with mouse.com 
  29.     loaded for mouse support.
  30.  
  31.     Simple support:  (/ms switch)
  32.         - there will be no mouse cursor present.
  33.         - moving the mouse is equal to using the arrow keys.
  34.         - the right mouse button equates to the ESC key.
  35.         - the left mouse button equates to ENTER.
  36.  
  37.     Full support:  (default)
  38.         - there will be a mouse cursor.
  39.         - the right mouse button equates to the ESC key.
  40.         - to make a menu selection, click the left button the
  41.           the item of your choice.
  42.         - you can move any bordered window.  Move the mouse cursor
  43.           to the top border of the window you wish to move.  Press 
  44.           and hold the left mouse button.  The top left edge of the
  45.           window will follow the mouse cursor until you release the
  46.           left button.
  47.         - you can resize any bordered window.  Move the mouse cursor
  48.           to the bottom right corner of the window.  Press and hold 
  49.           the left mouse button.  You can now make the window shrink
  50.           and grow by moving the mouse.  The max size for any window
  51.           is its virtual size.  Any window which is smaller than its
  52.           virtual size will have panning arrows on the left and/or
  53.           bottom border.
  54.         - you can pan a window which has a virtual size larger than
  55.           its fisical size.  Just click on the panning arrows on
  56.           the left or top border.  Holding down on the left button
  57.           will cause the window to pan until the end.
  58.         - you can scroll a pick list by clicking on the up/down 
  59.           arrows on the left border of the window.
  60.         - you can move the text cursor in a data entry window by
  61.           clicking on the field of your choice.
  62.